From 6790ee6c77cef6c9e3a2c37cda54b1dffd1460c4 Mon Sep 17 00:00:00 2001 From: robertl Date: Wed, 18 Sep 2002 16:40:29 +0000 Subject: [PATCH] Handle null description in output. git-svn-id: http://gpsbabel.googlecode.com/svn/trunk@84 f51c46e8-681c-474f-0cfe-069cfd0219fb --- gpsbabel/gpsutil.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpsbabel/gpsutil.c b/gpsbabel/gpsutil.c index 6e10c1d9b..abae0c85a 100644 --- a/gpsbabel/gpsutil.c +++ b/gpsbabel/gpsutil.c @@ -96,7 +96,7 @@ gpsutil_disp(waypoint *wpt) lon < 0.0 ? 'W' : 'E', wpt->position.altitude.altitude_meters, 'm', - wpt->description, + wpt->description ? wpt->description : "", icon_token); } -- 2.30.2